home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++Source Code Fmtr Folder / Src / cdent.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-27  |  340 b   |  22 lines  |  [TEXT/MPS ]

  1. #ifndef __CDENT__
  2. #define __CDENT__    1
  3.  
  4.  
  5. /*
  6. ** Severity levels for the diag function
  7. */
  8. enum Severity {
  9.     kDebug                                        //
  10.     , kProgress                                    //
  11.     , kDiagnostic                                //
  12.     , kFatal                                    //
  13. };
  14.  
  15.  
  16. extern Severity gDiagLevel;                        // Report at this level or above 
  17. extern void diag(Severity, const char *, ...);    // Report errors
  18.  
  19. #endif    
  20.  
  21.  
  22.